.home-page{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.content-container{
  flex:1;
  width:100%;
}
/* 轮播开始 */
.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-banner{
 height: 900px;
 position: relative;
}
.swiper-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleDown 2s;
}
.swiper-banner-slide{
  position: relative;
}
.swiper-banner-slide-text{
  position: absolute;
  top:200px;
  left:0;
  right:0;
  font-family: Microsoft YaHei;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.4;
  color:#ffffff;  
}
h4.swiper-banner-slide-mask-content-text-title{
  font-weight: 400;
}
/* 自定义样式 */
.swiper-banner-custom{
  position: absolute;
  top:60%;
  left:0;
  right:0;
  bottom:0;
  z-index: 1000;
}
.swiper-banner-button-group{
  position: absolute;
  height: 52px;
}
.swiper-button-next:after,.swiper-button-prev:after{
  display: none;
}
.swiper-button-prev{
  width:52px;
  height:52px;
  border-radius: 50%;
  top:0;
  background-image: url("../images/banner-navigation-left.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-button-prev.disable{
  background-color: none;
  background-image: url("../images/banner-navigation-left-disable.svg");
}
.swiper-button-next{
  width:52px;
  height:52px;
  border-radius: 50%;
  background-image: url("../images/banner-navigation-right.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  top:0;
  left:100px;
  right:0;
}
.swiper-button-next.disable{
  background-color: none;
  background-image: url("../images/banner-navigation-right-disable.svg");
}
.swiper-banner-pagination{
  margin-top:200px;
}
.swiper-banner-pagination .swiper-pagination-progressbar{
  width:243px;
  height: 4px;
  background:rgba(255,255,255,0.6);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
  background: #1D3390;
}

.swiper-banner-progress-number{
  width:243px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top:20px;
  box-sizing: border-box;
}
.swiper-banner-progress-number span{
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color:#ffffff;
}
.swiper-banner-progress-number span.active{
  color: #1D3390;
}

/* 轮播结束 */
/* 关于我们开始 */
.about-us{
  width: 100%;
  padding-top:50px;
  box-sizing: border-box;
  overflow: hidden;
}
.about-us-content{
position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-us-content-left{
  width:50%;
}
.about-us-content-left-top{
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.about-us-content-left-top-content{
  width:90%;
  max-width: 720px;
  padding-right:40px;
  box-sizing: border-box;
}
.about-us-content-title{
  font-family: Microsoft YaHei;
  font-size: 32px;
  font-weight: 400;
  line-height: 46px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom:20px;
}
.about-us-content-describe{
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom:30px;
}
/* tab切换 */
.tab-title{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tab-title-item{
  width:30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.tab-title-icon{
  width: 50px;
  height: 50px;
  margin-bottom:30px;
}
.tab-title-icon-img{
  width:50px;
  height: auto;
  display: none;
}
.tab-title-line{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-us-content-cover{
position: absolute;
right: 0;
bottom: 0;
  width:50%;
  max-height: 100%;
}
.about-us-content-cover-img{
  width:100%;
  height:820px;
  object-fit: cover;
  border-radius: 120px 0 0 0;
}
.tab-title-line{
  width: 100%;
  margin-bottom:20px;
  cursor: pointer;
}
.tab-title-line-square{
  width:28px;
  height: 16px;
  border-radius: 4px;
  background: #DCDCDC;
  transform: skew(-20deg); 
}
.tab-title-line-line{
  flex:1;
  height:2px;
  background-color:#DCDCDC;
}
.w-7{
  width:70%;
}
.tab-title-text{
  font-family: Microsoft YaHei;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom:50px;
}
.tab-title-item-active .tab-title-line-square{
  background: #1D3390;
}
.tab-title-line-line-progress{
  width: 0;
  transition: width 1.2s;
}
.tab-title-item-active .tab-title-line-line .tab-title-line-line-progress{
  width:100%;
  height:100%;
  /* animation: move 1.2s; */
  background: #1D3390;
}
.tab-title-item-active .tab-title-icon-img{
  display: block;
}
.tab-title-item-active .tab-title-text{
  color:#1D3390;
}
/* tab 内容 */
.about-us-content-left-bottom{
  width:100%;
  background: #F6F6F6;
  position: relative;
}
.about-us-content-left-bg{
  position: absolute;
  width: 611px;
  height: 587px;
  top: 0;
  left: -62px;
}
.tab-content{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.tab-content-bg{
  width:90%;
  max-width: 720px;
  padding:50px 40px 50px 0;
  box-sizing: border-box;
}
.tab-content-text{
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: justified;
  margin-bottom:50px;
}
.tab-content-text-one{
  display: block;
}
.tab-content-text-two{
  display: none;
}
.tab-content-total{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom:50px;
}
.tab-content-total-item{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;  
  color:#666666;
}
.tab-content-total-num{
  font-family: Roboto Condensed;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  text-align: left;
  color:#1D3390;
}
.tab-content-total-num span{
  font-size: 16px;
  color:#457149;
  margin-left:4px;
}
.tab-content-button{
  width:170px;
  height: 58px;
  border:2px solid #1D3390;
  transform: skew(-20deg); 
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  color:#1D3390;
  border-radius: 10px;
}
.tab-button-icon-line{
  width:25px;
  height: 2px;
  background: #457149;
  margin-left:6px;
}
.tab-button-icon-square{
  width:10px;
  height: 10px;
  background: #457149;
  transform: rotate(45deg);
}
.tab-content-button:hover{
  color:#ffffff;
  background-color: #1D3390;
}
.tab-content-button:hover .tab-button-icon-line{
  background-color: #ffffff;
}
.tab-content-button:hover .tab-button-icon-square{
  background-color: #ffffff;
}
/* 产品中心 */
.product{
  width:100%;
  height:877px;
  max-height: 100vh;
  overflow: hidden; 
  position: relative;
}
.product-bg{
  width:100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
  animation: all 1.6s ease;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-container{
  position: absolute;
  left:0;
  right:0;
  height:100%;
  padding:80px 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.product-title{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-title-text-title{
  font-family: Microsoft YaHei;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom:10px;
  color:#ffffff;
}
.product-title-text-describe{
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  color:#ffffff;
}
.more-product{
  width:156px;
  height:54px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: left;
  background: #ffffff;
  color:#999999;
}
.more-product:hover{
    background-color: #1d3390;
    color:#ffffff;
}
.product-content{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.product-content-item{
  margin-left:30px;
  width:315px;
  height:284px;
  border-radius: 4px;
  background: #ffffff;
  padding:30px;
  box-sizing: border-box;
  cursor: pointer;
}
.product-content-item:hover .product-bg{
  /* background-image: url("../images/development-bg.png"); */
  transform: scale(1.1);
}

.product-content-item-list{
  height: 160px;
}
.product-content-item-list-item{
  margin-bottom:20px;
}
.product-content-item-list-item-link{
  display: inline-block;
  width:100%;
  font-family: Microsoft YaHei;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color:#303030;
}
.product-content-item-more{
  width: 54px;
  height:auto;
}
.product-content-item:hover{
  background: #1d3390;
}
.product-content-item:hover .product-content-item-list-item-link{
  color:#ffffff;
}
/* 行业应用 */
.industry-applications{
  padding:80px 0;
  box-sizing: border-box;
  overflow: hidden;
}
.industry-applications-content{
  margin-top:68px;
  padding-left:calc((100% - 1620px)/2);
  box-sizing: border-box;
}
/* 行业  swiper */
.swiper-industry{
  width:100%;
  padding-bottom:70px;
  box-sizing: border-box;
  overflow: hidden;
}
.swiper-industry-slide a{
  width:387px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.swiper-industry-img{
  width:387px;
  height:auto;
  transition: transform 1s ease;
  transform:scale(1);
}
.swiper-industry-slide-mask{
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom: 0;
  padding:42px;
  box-sizing: border-box;
  font-family: Microsoft YaHei;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  color:#ffffff;
  flex-direction: column;
}
.swiper-industry-slide-mask-secondtitle{
  font-size: 18px;
  line-height: 24px;
  margin-top:4px;
}
.swiper-industry-slide a:hover .swiper-industry-img{
  transform:scale(1.2);
}
.industry-icon{
  display: none;
}
.swiper-industry-slide a:hover .industry-white-icon{
  display: none;
}
.swiper-industry-slide a:hover .industry-icon{
  display: block;
}
.swiper-pagination-bullet{
  width:16px;
  height:16px;
  background: #D9D9D9;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background: #457149;
}

/* 荣誉资质 */
.honorary-qualifications{
  width:100%;
  padding:80px 0;
  box-sizing: border-box;
  position: relative;
  background-color: #f4f4f6;
  background-image: url("../images/honorary-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.honorary-qualifications-content{
  margin-top:50px;
  padding-left:calc((100% - 1620px)/2);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.swiper-qualifications-button-group{
  width:118px;
  height:52px;
  /* margin-right:260px; */
  position: relative;
}
.swiper-honorary{
 margin-left:300px;
}
.swiper-honorary-slide{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.swiper-honorary-img{
  width:314px;
  height:auto;
}
.swiper-honorary-title{
  font-family: Microsoft YaHei;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left; 
  margin:40px 0 35px 0; 
}
.swiper-pagination-honorary{
  position: relative;
  bottom:0 !important;
  height: 1px !important;
}
/* 合作伙伴 */
.patner{
  width:100%;
  padding:80px 0;
  box-sizing: border-box;
  position: relative;
}
.patner-bg{
  position: absolute;
  bottom:0;
  right:0;
  width:670px;
  height: 670px;
}
.patner-content{
  margin-top: 118px;
}
.swiper-patner{
  position: relative;
  /* height: 428px; */
  padding-bottom: 120px;
}
.swiper-patner-slide a{
  display: block;
  width:100%;
  padding:10px;
  box-sizing: border-box;
}
.swiper-patner-slide-logo{
  position: relative;
  width:100%;
  height: 0;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0px 2px 34px 0px #EDEDED;
}
.swiper-patner-img{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  max-height: 60%;
  width: auto;
  max-width: 90%;
}
.swiper-patner-slide-title{
  font-family: Microsoft YaHei;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top:30px;
  text-align: center;
}
.swiper-patner-button-group{
  position: absolute;
  bottom: 0;
  width: 100%;
}
.swiper-patner-button-group .hide{
  display: none;
}
.swiper-button-patner-next{
  position: absolute;
  top:-50px;
  left:53%;
  transform: translateX(-50%);
}
.swiper-button-patner-prev{
  position: absolute;
  top:-50px;
  left:47%;
  transform: translateX(-50%);
}
@media all and (max-width: 1620px) {
  .swiper-banner-slide-text{
    font-size: 46px;
  }
  .industry-applications-content{
    padding-left:calc((100% - 1200px)/2) !important;
  }
  .swiper-industry-slide a{
    width:300px;
  }
  .swiper-industry-img{
    width:300px;
  }
  .honorary-qualifications-content{
    padding-left:calc((100% - 1200px)/2) !important;
  }
  .swiper-honorary{
    margin-left:200px;
  }
  .swiper-honorary-img{
    width:270px;
  }
  .patner-bg{
    width:590px;
    height: auto;
  }
  .swiper-industry-slide-mask{
    padding:26px;
    font-size: 20px;
  }
  .swiper-industry-slide-mask-secondtitle{
    font-size: 16px;
  }
  .industry-white-icon,.industry-icon{
    width:30px;
    height: auto;
  }

}
@media all and (max-width: 1440px) {
  .swiper-banner{
    height: 650px;
  }
  .swiper-industry-slide a{
    width:270px;
  }
  .swiper-industry-img{
    width:270px;
  }
}
@media all and (max-width: 1280px) {
  .product-title-text-title{
    font-size: 38px;
  }
  .swiper-banner-slide-text{
    font-size: 38px;
  }
  .industry-applications-content{
    padding-left:0 !important;
    width:100%;
  }
  .swiper-industry{
    width:90%;
  }
  .swiper-industry-slide a{
    width:220px;
  }
  .swiper-industry-img{
    width:220px;
  }
  .swiper-honorary{
    margin-left:100px;
  }
  .swiper-honorary-img{
    width:248px;
  }
  .swiper-industry-slide-mask{
    padding:20px;
    font-size: 16px;
  }
  .swiper-industry-slide-mask-secondtitle{
    font-size: 12px;
    line-height: 14px;
  }
  .industry-white-icon,.industry-icon{
    width:22px;
    height: auto;
  }
  .swiper-button-patner-next{
    left:55%;
  }
  .swiper-button-patner-prev{
    left:45%;
  }
  .tab-content-total-num{
    font-size: 46px;
  }
}

@media all and (max-width: 1080px){
  .swiper-banner{
    height: 530px;
  }
  .swiper-honorary-img{
    width:220px;
  }
  .tab-content-total-num{
    font-size: 26px;
  }
  .tab-content-total-num span{
    font-size: 12px;
  }
  .swiper-banner-button-group{
    display: none;
  }
}
@media all and (max-width: 820px){
  .swiper-banner{
    height:380px;
  }
  .swiper-banner-slide-text{
    top:30px;
    font-size: 26px;
    line-height: 46px;
  }
  .swiper-banner-custom{
    top:45%;
  }
  .swiper-banner-pagination{
    margin-top:120px;
  }
  .about-us{
    width:92%;
    margin:0 auto;
  }
  .about-us-content{
    flex-direction: column;
  }
  .about-us-content-left{
    width: 100%;
  }
  .about-us-content-cover {
    position: relative;
}
  .about-us-content-left-top{
    justify-content: flex-start;
  }
  .about-us-content-left-top-content{
    width:100%;
    max-width: 100%;
  }
  .tab-title-icon{
    display: none;
  }
  .about-us-content-cover{
    width:100%;
  }
  .product-content-item{
    width:32%;
    height:auto;
    padding:20px 12px;
    margin-left:10px;
  }
  .product-content-item-list-item-link{
    width:100%;
  }
  .product-content-item-more{
    width:36px;
  }
  .product{
    height:600px;
  }
  .swiper-industry{
    width:92%;
  }
  .swiper-industry-slide a{
    width:150px;
  }
  .swiper-industry-img{
    width:150px;
  }
  .honorary-qualifications-content{
    flex-direction: column;
  }
  .swiper-honorary{
    width:100%;
    margin-left:0;
  }
  .patner-bg{
    width:320px;
    height: auto;
  }
 
  .swiper-industry-slide-mask{
    font-size: 14px;
  }
  .swiper-industry-slide-mask-secondtitle{
    word-wrap: break-word;
    overflow: hidden;
  }
  .industry-white-icon,.industry-icon{
    width:18px;
    height: auto;
  }
  .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
  }
}

@media all and (max-width: 767px){
  .swiper-banner-slide-text {
    top: 30px;
    font-size: 20px;
    line-height: 1.2;
  }
  
  .swiper-banner{
    height:235px;
  }
  .swiper-banner-custom{
    top:18%;
  }
  .tab-content-total-item{
    margin-bottom:30px;
  }
  .tab-content-text{
    margin-bottom:15px;
  }
  .tab-content-total{
    flex-direction: column;
    margin-bottom:30px;
  }
  .tab-content-button{
    margin:0 auto;
  }
  .about-us-content-cover{
    display: none;
  }
  .about-us-content-title{
    font-size: 22px;
    line-height: 22px;
  }
  .about-us-content-describe{
    font-size: 14px;
    line-height: 16px;
  }
  .tab-content{
    justify-content: flex-start;
  }
  .tab-content-bg{
    width:100%;
    padding:30px 20px;
  }
  .tab-content-text{
    font-size: 14px;
  }
  .tab-title-text{
    font-size: 16px;
    margin-bottom: 20px;
  }
  .product{
    height:900px;
    max-height: inherit;
  }
  .product-container{
    padding:30px 0;
  }
  .product-title-text-title{
    font-size: 28px;
  }
  .product-content-item-list{
    height: auto;
  }
  .more-product{
    margin-top: 15px;
    width:100px;
    height: 34px;
    font-size: 14px;
  }
  .product-title{
    margin-bottom:20px;
    display: block;
  }
  .product-content{
    flex-direction: column;
  }
  .product-content-item{
    width:100%;
    margin-bottom:20px;
    margin-left:0;
  }
  .industry-applications{
    padding:30px 0;
  }
  .honorary-qualifications{
    padding:30px 0;
  }
  .patner{
    padding:30px 0;
  }
  .about-us-content-left-bg{
    width:220px;
    left:0;
  }
  .patner-content{
    margin-top:60px;
  }
  .swiper-button-patner-prev{
    left:42%;
  }
  .swiper-button-prev,.swiper-button-next{
    width:40px;
    height: 40px;
    outline:none;
  }
  .swiper-button-next{
    left:70px;
  }
  .swiper-button-patner-next{
    left:58%;
  }
  .industry-applications-content{
    margin-top:40px;
  }
  .swiper-pagination-bullet{
    width:10px;
    height: 10px;
  }
  .tab-content-bg{
    padding-right:30px;
  }

 
 .product  .product-bg{
	  width: auto;
	  height: 100%;
  }
  .header-nav-list{
	  display: none;
  }
  .swiper-patner-button-group .hide {
    display: block;
  }
}